home *** CD-ROM | disk | FTP | other *** search
/ Mac Power 1997 November / MACPOWER-1997-11.ISO.7z / MACPOWER-1997-11.ISO / AMUG / MUSIC / bol-processor-271-data.sit / bol-processor-271-data / BP2 examples / BP2 data / -da.tryTicks < prev    next >
Text File  |  1997-04-01  |  2KB  |  32 lines

  1. // Bol Processor version BP2.7
  2. // Data file saved as '-da.tryTicks'. Date: Tue, Apr 1, 1997 -- 13d6
  3. -tb.tintal
  4. -se.tryTicks
  5. -tb.tintal
  6. -se.tryTicks
  7.  
  8. // Very simple examples showing how ticks of the time base may be superimposed to
  9. // the performance of musical items
  10.  
  11. // Note that tick in the time base should not use the same keys and channels as notes
  12. // in the item, otherwise the two may not merge properly.
  13.  
  14. // Basic example
  15. C6.C6.C6.C6.B5.A5.B5.C6.B5.A5.F5.E5 C5.E5.F5.A5.B5.C6
  16.  
  17. // Also try this after setting "Cycle play" (Misc settings dialog)
  18. C6.C6.C6.C6.B5.A5.B5.C6.B5.A5.F5.E5 C5.E5.F5.A5.B5
  19.  
  20. // Resetting cycle during performance (on the fifth beat)
  21. E5.F5.A5.B5._script(Reset tick cycle) C6.C6.C6.C6.B5.A5.B5.C6.B5.A5.F5.E5 C5.E5.F5.A5.B5.C6
  22. // Better version: ticks are not played during the initial four beats
  23. _script(Tick cycle OFF) E5.F5.A5.B5._script(Tick cycle ON) _script(Reset tick cycle) C6.C6.C6.C6.B5.A5.B5.C6.B5.A5.F5.E5 C5.E5.F5.A5.B5.C6
  24. // Note that "Tick cycle OFF" silences ticks, but the beat goes on, for instance:
  25. _script(Tick cycle OFF) E5.F5.A5.B5._script(Tick cycle ON) _script(Reset tick cycle) C6.C6.C6.C6.B5.A5.B5.C6._script(Tick cycle OFF) B5.A5.F5.E5 C5._script(Tick cycle ON) E5.F5.A5.B5.C6
  26.  
  27. // This example shows that it is also possible to reset the tick cycle on a time location
  28. // which does not coincide with a streak.
  29. _script(Tick cycle OFF){{1/3,B4 C5}.E5.F5.A5.B5} _script(Tick cycle ON) _script(Reset tick cycle) {C6.C6.C6.C6.B5.A5.B5.C6.B5.A5.F5.E5 C5.E5.F5.A5.B5.C6}
  30.  
  31. // The beat goes on during a silence...
  32. _script(Tick cycle OFF)E5.F5.A5.-._script(Tick cycle ON) _script(Reset tick cycle) -.C6.C6.C6.B5.A5.B5.C6.B5.A5.F5.E5 C5.E5.F5.A5.B5.C6